Message Application Programming Interface - перевод на Английский
Diclib.com
Словарь онлайн

Message Application Programming Interface - перевод на Английский

BINARY INTERFACE BETWEEN TWO PROGRAM UNITS THAT ACTS AS A BRIDGE
Application Binary Interface; EABI; Embedded Application Binary Interface; Embedded-application binary interface; Embedded-Application Binary Interface; C ABI
  • ISVs]].
  • A high-level comparison of in-kernel and kernel-to-userspace APIs and ABIs

Application Program Interface         
  • Univac 1108]], the goal of their API was to make [[hardware independent]] programs possible.<ref name="CottonGreatorex1968" />
SOFTWARE INTERFACE BETWEEN COMPUTERS AND/OR PROGRAMS
Application-programming interface; Application Programming Interfaces; Application-level interaction; Application Program Interface; Api; API documentation; API Documentation; Application Programming Interface (API); Application program interface; Applications programming interface; Application programming interfaces; Applications Programming Interface; Application program interfaces; Programming interface; Software API; Advanced programming interface; Api.php; API.php; Application Programming Interface; API (redirects and miscellaneous); Development API; API compatibility; API-compatible; API function; API economy; Api economy; Application programming interface; Application Programmer's Interface; Application Programmers Interface; Hyrum's Law; Hyrum's law
interface voor uitvoeringsprogramma's
application program         
SOFTWARE PROGRAM OR GROUP OF PROGRAMS DESIGNED FOR END-USERS
Application program; Computer application; Software applications; Computer applications; App code; Applications software; Application package; Suite of applications; Software application; Software Application; Applications program; Applications programs; Computer Applications; Application model; Applications (computing); Application (computing); Desktop application; Application (computer); Desktop software; Desktop applications; Local application; Desktop app; Application (software); Computer app; App (computing); Application softwares
applicatie programma, programma dat een specifieke taak moet verrichten
computer applications         
SOFTWARE PROGRAM OR GROUP OF PROGRAMS DESIGNED FOR END-USERS
Application program; Computer application; Software applications; Computer applications; App code; Applications software; Application package; Suite of applications; Software application; Software Application; Applications program; Applications programs; Computer Applications; Application model; Applications (computing); Application (computing); Desktop application; Application (computer); Desktop software; Desktop applications; Local application; Desktop app; Application (software); Computer app; App (computing); Application softwares
computer toepassingen

Определение

Application Program Interface
<programming> (API, or "application programming interface") The interface (calling conventions) by which an {application program} accesses operating system and other services. An API is defined at source code level and provides a level of abstraction between the application and the kernel (or other privileged utilities) to ensure the portability of the code. An API can also provide an interface between a {high level language} and lower level utilities and services which were written without consideration for the calling conventions supported by compiled languages. In this case, the API's main task may be the translation of parameter lists from one format to another and the interpretation of call-by-value and call-by-reference arguments in one or both directions. (1995-02-15)

Википедия

Application binary interface

In computer software, an application binary interface (ABI) is an interface between two binary program modules. Often, one of these modules is a library or operating system facility, and the other is a program that is being run by a user.

An ABI defines how data structures or computational routines are accessed in machine code, which is a low-level, hardware-dependent format. In contrast, an API defines this access in source code, which is a relatively high-level, hardware-independent, often human-readable format. A common aspect of an ABI is the calling convention, which determines how data is provided as input to, or read as output from, computational routines. Examples of this are the x86 calling conventions.

Adhering to an ABI (which may or may not be officially standardized) is usually the job of a compiler, operating system, or library author. However, an application programmer may have to deal with an ABI directly when writing a program in a mix of programming languages, or even compiling a program written in the same language with different compilers.